docs: use proper quotations instead of '*'
authorWilliam Jon McCann <william.jon.mccann@gmail.com>
Fri, 7 Feb 2014 19:03:49 +0000 (14:03 -0500)
committerWilliam Jon McCann <william.jon.mccann@gmail.com>
Fri, 7 Feb 2014 19:22:39 +0000 (14:22 -0500)
60 files changed:
gdk/gdk.c
gdk/gdkcolor.c
gdk/gdkcursor.c
gdk/gdkevents.h
gdk/gdkrgba.c
gdk/gdkscreen.c
gdk/keyname-table.h
gdk/quartz/gdkeventloop-quartz.c
gtk/deprecated/gtkcolorsel.c
gtk/deprecated/gtkfontsel.c
gtk/deprecated/gtkhbbox.c
gtk/deprecated/gtkhsv.c
gtk/deprecated/gtkrc.c
gtk/deprecated/gtktable.c
gtk/deprecated/gtkuimanager.c
gtk/deprecated/gtkvbbox.c
gtk/gtkaboutdialog.c
gtk/gtkactionmuxer.c
gtk/gtkapplication.c
gtk/gtkbbox.c
gtk/gtkbindings.c
gtk/gtkbutton.c
gtk/gtkcairoblur.c
gtk/gtkcellrenderer.c
gtk/gtkcombobox.c
gtk/gtkcomboboxtext.c
gtk/gtkcsscustomproperty.c
gtk/gtkcssprovider.c
gtk/gtkdialog.c
gtk/gtkentry.c
gtk/gtkenums.h
gtk/gtkexpander.c
gtk/gtkfilechooserwidget.c
gtk/gtkgrid.c
gtk/gtkicontheme.c
gtk/gtkimmodule.c
gtk/gtkinfobar.c
gtk/gtklabel.c
gtk/gtklinkbutton.c
gtk/gtkmenu.c
gtk/gtkmenubutton.c
gtk/gtkmenushell.c
gtk/gtkmenutracker.c
gtk/gtknotebook.c
gtk/gtkorientable.c
gtk/gtkpango.c
gtk/gtkstylecontext.c
gtk/gtkstylecontext.h
gtk/gtktestutils.c
gtk/gtktogglebutton.c
gtk/gtktoggletoolbutton.c
gtk/gtktoolbutton.c
gtk/gtktreemodel.c
gtk/gtktreemodelsort.c
gtk/gtktreeselection.c
gtk/gtkwidget.c
gtk/gtkwidget.h
gtk/gtkwidgetpath.c
gtk/gtkwindow.c
gtk/updateiconcache.c

index 1e57afd92fe08891f26a1f02316d51d54bc12291..e9cbcdc27a3aa04b3a1b2f16d07c9caae009e692 100644 (file)
--- a/gdk/gdk.c
+++ b/gdk/gdk.c
@@ -944,7 +944,7 @@ gdk_threads_add_idle (GSourceFunc    function,
  * event sources. Thus they should not be relied on for precise timing.
  * After each call to the timeout function, the time of the next
  * timeout is recalculated based on the current time and the given interval
- * (it does not try to 'catch up' time lost in delays).
+ * (it does not try to “catch up” time lost in delays).
  *
  * This variant of g_timeout_add_full() can be thought of a MT-safe version 
  * for GTK+ widgets for the following use case:
index a71af0da09054d080b7508da5f8cd04dc34ef42d..e93c82a840fadaa1812da257fa5873f4f83ba04e 100644 (file)
@@ -132,12 +132,12 @@ G_DEFINE_BOXED_TYPE (GdkColor, gdk_color,
  *
  * The string can either one of a large set of standard names
  * (taken from the X11 `rgb.txt` file), or
- * it can be a hex value in the form '&num;rgb' '&num;rrggbb'
- * '&num;rrrgggbbb' or '&num;rrrrggggbbbb' where 'r', 'g' and
- * 'b' are hex digits of the red, green, and blue components
+ * it can be a hex value in the form “&num;rgb” “&num;rrggbb”
+ * “&num;rrrgggbbb” or “&num;rrrrggggbbbb” where “r”, “g” and
+ * “b” are hex digits of the red, green, and blue components
  * of the color, respectively. (White in the four forms is
- * '&num;fff', '&num;ffffff', '&num;fffffffff' and
- * '&num;ffffffffffff').
+ * “&num;fff”, “&num;ffffff”, “&num;fffffffff” and
+ * “&num;ffffffffffff”).
  *
  * Return value: %TRUE if the parsing succeeded
  */
index 1d3f4c39362ac6061e7f8c402406cecf983dc99f..2157bcf2db30e14021d7e1b046eb459e6aa5c11c 100644 (file)
@@ -282,8 +282,8 @@ gdk_cursor_new_from_name (GdkDisplay  *display,
  * gdk_cursor_new_from_pixbuf:
  * @display: the #GdkDisplay for which the cursor will be created
  * @pixbuf: the #GdkPixbuf containing the cursor image
- * @x: the horizontal offset of the 'hotspot' of the cursor.
- * @y: the vertical offset of the 'hotspot' of the cursor.
+ * @x: the horizontal offset of the “hotspot” of the cursor.
+ * @y: the vertical offset of the “hotspot” of the cursor.
  *
  * Creates a new cursor from a pixbuf.
  *
@@ -353,8 +353,8 @@ gdk_cursor_new_from_pixbuf (GdkDisplay *display,
  * gdk_cursor_new_from_surface:
  * @display: the #GdkDisplay for which the cursor will be created
  * @surface: the cairo image surface containing the cursor pixel data
- * @x: the horizontal offset of the 'hotspot' of the cursor
- * @y: the vertical offset of the 'hotspot' of the cursor
+ * @x: the horizontal offset of the “hotspot” of the cursor
+ * @y: the vertical offset of the “hotspot” of the cursor
  *
  * Creates a new cursor from a cairo image surface.
  *
index 3dd67e7f601e7d2eb03f1190c905a9715463e1ce..896e18b272e511b0d8c8419e16951c8ef9bcfb17 100644 (file)
@@ -755,7 +755,7 @@ struct _GdkEventTouch
  * usually configured to generate button press events for buttons 4 and 5
  * when the wheel is turned.
  *
- * Some GDK backends can also generate 'smooth' scroll events, which
+ * Some GDK backends can also generate “smooth” scroll events, which
  * can be recognized by the %GDK_SCROLL_SMOOTH scroll direction. For
  * these, the scroll deltas can be obtained with
  * gdk_event_get_scroll_deltas().
index 88fcdf81ce1fcc5bd75fe87cb0887a9ace0feb3e..d48472e189c22ca09b41deb147de4734110cb1fd 100644 (file)
@@ -99,7 +99,7 @@ gdk_rgba_free (GdkRGBA *rgba)
  *  - For non-percentage values, we accept floats in the range 0-255
  *    not just [0-9]+ integers
  *  - For percentage values we accept any float, not just
- *     [ 0-9]+ | [0-9]* '.' [0-9]+
+ *     [ 0-9]+ | [0-9]* “.” [0-9]+
  *  - We accept mixed percentages and non-percentages in a single
  *    rgb() or rgba() specification.
  */
@@ -142,13 +142,13 @@ parse_rgb_value (const gchar  *str,
  *
  * The string can be either one of:
  * - A standard name (Taken from the X11 rgb.txt file).
- * - A hex value in the form '&num;rgb' '&num;rrggbb' '&num;rrrgggbbb'
- *   or '&num;rrrrggggbbbb'
- * - A RGB color in the form 'rgb(r,g,b)' (In this case the color will
+ * - A hex value in the form “&num;rgb” “&num;rrggbb” “&num;rrrgggbbb”
+ *   or “&num;rrrrggggbbbb”
+ * - A RGB color in the form “rgb(r,g,b)” (In this case the color will
  *   have full opacity)
- * - A RGBA color in the form 'rgba(r,g,b,a)'
+ * - A RGBA color in the form “rgba(r,g,b,a)”
  *
- * Where 'r', 'g', 'b' and 'a' are respectively the red, green, blue and
+ * Where “r”, “g”, “b” and “a” are respectively the red, green, blue and
  * alpha color values. In the last two cases, r g and b are either integers
  * in the range 0 to 255 or precentage values in the range 0% to 100%, and
  * a is a floating point value in the range 0 to 1.
@@ -332,7 +332,7 @@ gdk_rgba_equal (gconstpointer p1,
  * Returns a textual specification of @rgba in the form
  * `rgb (r, g, b)` or
  * `rgba (r, g, b, a)`,
- * where 'r', 'g', 'b' and 'a' represent the red, green,
+ * where “r”, “g”, “b” and “a” represent the red, green,
  * blue and alpha values respectively. r, g, and b are
  * represented as integers in the range 0 to 255, and a
  * is represented as floating point value in the range 0 to 1.
index cafa95af55ca0fe4593a9d0b40a27e6b028dbb0c..2e25af7defbeb03e065cb42f27db257786eba630 100644 (file)
@@ -687,7 +687,7 @@ gdk_screen_get_n_monitors (GdkScreen *screen)
  * @screen: a #GdkScreen.
  *
  * Gets the primary monitor for @screen.  The primary monitor
- * is considered the monitor where the 'main desktop' lives.
+ * is considered the monitor where the “main desktop” lives.
  * While normal application windows typically allow the window
  * manager to place the windows, specialized desktop applications
  * such as panels should place themselves on the primary monitor.
index 0df549844fb88a58c08f9a15aaf7122366f4f659..5d13322637dc76804fd2165bc6bc4399c615d59e 100644 (file)
@@ -6830,11 +6830,11 @@ static const gdk_key gdk_keys_by_name[] = {
 #if 0
 
 /*
- * Translators, the strings in the 'keyboard label' context are
+ * Translators, the strings in the “keyboard label” context are
  * display names for keyboard keys. Some of them have prefixes like
  * XF86 or ISO_ - these should be removed in the translation. Similarly,
- * underscores should be replaced by spaces. The prefix 'KP_' stands
- * for 'key pad' and you may want to include that in your translation.
+ * underscores should be replaced by spaces. The prefix “KP_” stands
+ * for “key pad” and you may want to include that in your translation.
  * Here are some examples of English translations:
  * XF86AudioMute - Audio mute
  * Scroll_lock   - Scroll lock
index ed07e55879c55d9364f68d3817ad12d45910b007..7ef4f2a46a3e85495c7eb95bb2ed49725316303f 100644 (file)
@@ -88,7 +88,7 @@ static guint run_loop_n_pollfds;    /* Number of file descriptors in the array *
  * we need to make sure that the poll function is always called even
  * when there are no file descriptors that need to be polled. To do
  * this, we add a dummy GPollFD to our event source with a file
- * descriptor of '-1'. Then any time that GLib is polling the event
+ * descriptor of “-1”. Then any time that GLib is polling the event
  * source, it will call our poll function.
  */
 static GPollFD event_poll_fd;
index df4e3f2844b4ff8811618a5d98a6c67290f9f965..7a0206807ad8f7b56187ac1755c297bfb82f06df 100644 (file)
@@ -2630,7 +2630,7 @@ gtk_color_selection_get_current_alpha (GtkColorSelection *colorsel)
  * @colorsel: a #GtkColorSelection
  * @color: a #GdkColor to set the previous color with
  *
- * Sets the 'previous' color to be @color.
+ * Sets the “previous” color to be @color.
  *
  * This function should be called with some hesitations,
  * as it might seem confusing to have that color change.
@@ -2669,7 +2669,7 @@ gtk_color_selection_set_previous_color (GtkColorSelection *colorsel,
  * @colorsel: a #GtkColorSelection
  * @alpha: an integer between 0 and 65535
  *
- * Sets the 'previous' alpha to be @alpha.
+ * Sets the “previous” alpha to be @alpha.
  *
  * This function should be called with some hesitations,
  * as it might seem confusing to have that alpha change.
@@ -2811,7 +2811,7 @@ gtk_color_selection_get_current_rgba (GtkColorSelection *colorsel,
  * @colorsel: a #GtkColorSelection
  * @rgba: a #GdkRGBA to set the previous color with
  *
- * Sets the 'previous' color to be @rgba.
+ * Sets the “previous” color to be @rgba.
  *
  * This function should be called with some hesitations,
  * as it might seem confusing to have that color change.
index 82a95d2f41e955e673f37e3af72b3152a5a4dda3..83e520ca34c2a9fcde0c2b0f655bfd08faceb24b 100644 (file)
@@ -1206,7 +1206,7 @@ gtk_font_selection_update_preview (GtkFontSelection *fontsel)
  * @fontsel: a #GtkFontSelection
  *
  * This returns the #GtkTreeView that lists font families, for
- * example, 'Sans', 'Serif', etc.
+ * example, “Sans”, “Serif”, etc.
  *
  * Return value: (transfer none): A #GtkWidget that is part of @fontsel
  *
@@ -1227,7 +1227,7 @@ gtk_font_selection_get_family_list (GtkFontSelection *fontsel)
  * @fontsel: a #GtkFontSelection
  *
  * This returns the #GtkTreeView which lists all styles available for
- * the selected font. For example, 'Regular', 'Bold', etc.
+ * the selected font. For example, “Regular”, “Bold”, etc.
  * 
  * Return value: (transfer none): A #GtkWidget that is part of @fontsel
  *
@@ -1759,10 +1759,10 @@ gtk_font_selection_dialog_get_font_selection (GtkFontSelectionDialog *fsd)
  * gtk_font_selection_dialog_get_ok_button:
  * @fsd: a #GtkFontSelectionDialog
  *
- * Gets the 'OK' button.
+ * Gets the “OK” button.
  *
  * Return value: (transfer none): the #GtkWidget used in the dialog
- *     for the 'OK' button.
+ *     for the “OK” button.
  *
  * Since: 2.14
  *
@@ -1780,10 +1780,10 @@ gtk_font_selection_dialog_get_ok_button (GtkFontSelectionDialog *fsd)
  * gtk_font_selection_dialog_get_cancel_button:
  * @fsd: a #GtkFontSelectionDialog
  *
- * Gets the 'Cancel' button.
+ * Gets the “Cancel” button.
  *
  * Return value: (transfer none): the #GtkWidget used in the dialog
- *     for the 'Cancel' button.
+ *     for the “Cancel” button.
  *
  * Since: 2.14
  *
index 054e7b49a5b31d446fa837d8694a3ff5aa86ce15..9d119fedb3bc1a14a8f126e504971b57801db30d 100644 (file)
@@ -38,7 +38,7 @@ G_GNUC_BEGIN_IGNORE_DEPRECATIONS
  *
  * A button box should be used to provide a consistent layout of buttons
  * throughout your application. The layout/spacing can be altered by the
- * programmer, or if desired, by the user to alter the 'feel' of a
+ * programmer, or if desired, by the user to alter the “feel” of a
  * program to a small degree.
  *
  * A #GtkHButtonBox is created with gtk_hbutton_box_new(). Buttons are
index 7f164d4e63ca5b6879dab48eac7dc230f6901e8a..fa5a9b7b59ee8162c5f29f6104dbf97a3fc38b24 100644 (file)
 
 /**
  * SECTION:gtkhsv
- * @Short_description: A 'color wheel' widget
+ * @Short_description: A “color wheel” widget
  * @Title: GtkHSV
  * @See_also: #GtkColorSelection, #GtkColorSelectionDialog
  *
- * #GtkHSV is the 'color wheel' part of a complete color selector widget.
+ * #GtkHSV is the “color wheel” part of a complete color selector widget.
  * It allows to select a color by determining its HSV components in an
  * intuitive way. Moving the selection around the outer ring changes the hue,
  * and moving the selection point inside the inner triangle changes value and
index 169b59943ce3e6da53ec47ecbf503b1d9b273cd3..a920d2ee9b5bf9fdd4b2d0af595830bc5e2e274c 100644 (file)
  * # Toplevel declarations #
  *
  * An RC file is a text file which is composed of a sequence
- * of declarations. `'#'` characters delimit comments and
- * the portion of a line after a `'#'` is ignored when parsing
+ * of declarations. `“#”` characters delimit comments and
+ * the portion of a line after a `“#”` is ignored when parsing
  * an RC file.
  *
  * The possible toplevel declarations are:
index 4af47c49ed1ac84f3f9d8315af52515ff94e32ff..23b98bdaa26871a66bbb3ea84490806aaa3b8e4a 100644 (file)
@@ -721,7 +721,7 @@ gtk_table_resize (GtkTable *table,
  * @xpadding: An integer value specifying the padding on the left and right of the widget being added to the table.
  * @ypadding: The amount of padding above and below the child widget.
  *
- * Adds a widget to a table. The number of 'cells' that a widget will occupy is
+ * Adds a widget to a table. The number of “cells” that a widget will occupy is
  * specified by @left_attach, @right_attach, @top_attach and @bottom_attach.
  * These each represent the leftmost, rightmost, uppermost and lowest column
  * and row numbers of the table. (Columns and rows are indexed from zero).
index 1df9bb99229f39da2ec799c86b2dbd6da655e490..69f89e32701593358876c8b7bb8bcf19cab5ff2c 100644 (file)
  *
  * If a name is not specified, it defaults to the action. If an action is
  * not specified either, the element name is used. The name and action
- * attributes must not contain '/' characters after parsing (since that
+ * attributes must not contain “/” characters after parsing (since that
  * would mess up path lookup) and must be usable as XML attributes when
- * enclosed in doublequotes, thus they must not '"' characters or references
+ * enclosed in doublequotes, thus they must not “"” characters or references
  * to the &quot; entity.
  *
  * # A UI definition #
@@ -1092,7 +1092,7 @@ gtk_ui_manager_get_accel_group (GtkUIManager *manager)
  * 
  * Looks up a widget by following a path. 
  * The path consists of the names specified in the XML description of the UI. 
- * separated by '/'. Elements which don’t have a name or action attribute in 
+ * separated by “/”. Elements which don’t have a name or action attribute in 
  * the XML (e.g. &lt;popup&gt;) can be addressed by their XML element name 
  * (e.g. "popup"). The root element ("/ui") can be omitted in the path.
  *
index 9253746c653b9042927adb6afc06d98eb0f0c300..320f84778edb784052afb9167e12b2f9718cbbfe 100644 (file)
@@ -38,7 +38,7 @@ G_GNUC_BEGIN_IGNORE_DEPRECATIONS
  *
  * A button box should be used to provide a consistent layout of buttons
  * throughout your application. The layout/spacing can be altered by the
- * programmer, or if desired, by the user to alter the 'feel' of a
+ * programmer, or if desired, by the user to alter the “feel” of a
  * program to a small degree.
  *
  * A #GtkVButtonBox is created with gtk_vbutton_box_new(). Buttons are
index 736b7b7e59812aaae5352558457f5a772085b336..19b72777ee6c68c389a849eb03d3b265d0b9c96d 100644 (file)
@@ -94,7 +94,7 @@
  *
  * It is also possible to show a #GtkAboutDialog like any other #GtkDialog,
  * e.g. using gtk_dialog_run(). In this case, you might need to know that
- * the 'Close' button returns the #GTK_RESPONSE_CANCEL response id.
+ * the “Close” button returns the #GTK_RESPONSE_CANCEL response id.
  */
 
 /* Translators: this is the license preamble; the string at the end
index de675ed1cf84f8d2fadb67fac09a1466e418c9e4..2e48d6c28b92bfbe850723ca2218494c93fb53cd 100644 (file)
@@ -37,9 +37,9 @@
  * particular context into a single action group, with namespacing.
  *
  * Consider the case of two action groups -- one containing actions
- * applicable to an entire application (such as 'quit') and one
+ * applicable to an entire application (such as “quit”) and one
  * containing actions applicable to a particular window in the
- * application (such as 'fullscreen').
+ * application (such as “fullscreen”).
  *
  * In this case, each of these action groups could be added to a
  * #GtkActionMuxer with the prefixes “app” and “win”, respectively.  This
index a0451e9adb402d892d86d60c4714c9074a3319d9..8fb80307ffc99e379274669e80828540cc73469e 100644 (file)
@@ -67,7 +67,7 @@
  * actions invoked in a predictable context it is therefore recommended
  * that the GDK lock be held while invoking actions locally with
  * g_action_group_activate_action().  The same applies to actions
- * associated with #GtkApplicationWindow and to the 'activate' and
+ * associated with #GtkApplicationWindow and to the “activate” and
  * 'open' #GApplication methods.
  *
  * To set an application menu for a GtkApplication, use
@@ -1082,7 +1082,7 @@ gtk_application_update_accels (GtkApplication *application)
  * are referred to with an “app.” prefix, and window-specific actions
  * with a “win.” prefix.
  *
- * GtkApplication also extracts accelerators out of 'accel' attributes
+ * GtkApplication also extracts accelerators out of “accel” attributes
  * in the #GMenuModels passed to gtk_application_set_app_menu() and
  * gtk_application_set_menubar(), which is usually more convenient
  * than calling this function for each accelerator.
index 1d60ab542349f4d07b3c710c95f2dab724956e5c..fafcea74cac3f007d28282060faa9b5ccda527a2 100644 (file)
@@ -29,7 +29,7 @@
  *
  * A button box should be used to provide a consistent layout of buttons
  * throughout your application. The layout/spacing can be altered by the
- * programmer, or if desired, by the user to alter the 'feel' of a
+ * programmer, or if desired, by the user to alter the “feel” of a
  * program to a small degree.
  *
  * gtk_button_box_get_layout() and gtk_button_box_set_layout() retrieve and
index 6b0da96c5318cec705ccab3570863bdbfaa8cac0..18a17f52e016741ada73c9c8ad7acd4272ff6ebf 100644 (file)
@@ -49,7 +49,7 @@
  *
  * # Installing a key binding
  *
- * A CSS file binding consists of a 'binding-set' definition and a match
+ * A CSS file binding consists of a “binding-set” definition and a match
  * statement to apply the binding set to specific widget types. Details
  * on the matching mechanism are described under
  * [Selectors][gtkcssprovider-selectors]
index c05a98532d4925ee0019fdb08c6178fc0371744f..8cfdf39ad3b22cd9c7b5c80981ee3736443afb0e 100644 (file)
@@ -1375,7 +1375,7 @@ gtk_button_new_from_stock (const gchar *stock_id)
  *
  * Creates a new #GtkButton containing a label.
  * If characters in @label are preceded by an underscore, they are underlined.
- * If you need a literal underscore character in a label, use '__' (two
+ * If you need a literal underscore character in a label, use “__” (two
  * underscores). The first underlined character represents a keyboard
  * accelerator called a mnemonic.
  * Pressing Alt and that key activates the button.
index df989898b2c99ffed4d52ffa094341d002b91782..b38a3e89800c8bcad82ec58918dbed876a2d8978 100644 (file)
@@ -165,8 +165,8 @@ _blurcol (guchar* pixels,
  * @aprec: precision of alpha parameter in fixed-point format 0.aprec
  * @zprec: precision of state parameters zR,zG,zB and zA in fp format 8.zprec
  *
- * Performs an in-place blur of image data 'pixels'
- * with kernel of approximate radius 'radius'.
+ * Performs an in-place blur of image data “pixels”
+ * with kernel of approximate radius “radius”.
  *
  * Blurs with two sided exponential impulse response.
  *
index 1b542bb8babb57295f33cace794bb3d758957b5b..5c21cb6a11c87063c5deec5abeeb19a8361cfae5 100644 (file)
@@ -1394,7 +1394,7 @@ gtk_cell_renderer_real_get_aligned_area (GtkCellRenderer         *cell,
  * cell alignment in a target allocation (used to draw focus and align
  * cells in the icon view).
  *
- * Note this is only a trivial 'align * (allocation - request)' operation.
+ * Note this is only a trivial “align * (allocation - request)” operation.
  */
 void
 _gtk_cell_renderer_calc_offset    (GtkCellRenderer      *cell,
index 9f4198b195e778ac536616fb80a949ab4d6b3e0b..c0c77188095fb06af40e720de7e3aaa54475f95f 100644 (file)
@@ -80,7 +80,7 @@
  * not restricted to a flat list, it can be a real tree, and the popup will
  * reflect the tree structure.
  *
- * To allow the user to enter values not in the model, the 'has-entry'
+ * To allow the user to enter values not in the model, the “has-entry”
  * property allows the GtkComboBox to contain a #GtkEntry. This entry
  * can be accessed by calling gtk_bin_get_child() on the combo box.
  *
index 1e0c1410942c8830f5706e06fbfeb7ad1fb1287a..f3d120b7d67cb90c383aa64fa43f0f46caaeb60c 100644 (file)
@@ -44,7 +44,7 @@
  * or gtk_combo_box_text_prepend_text() and remove options with
  * gtk_combo_box_text_remove().
  *
- * If the GtkComboBoxText contains an entry (via the 'has-entry' property),
+ * If the GtkComboBoxText contains an entry (via the “has-entry” property),
  * its contents can be retrieved using gtk_combo_box_text_get_active_text().
  * The entry itself can be accessed by calling gtk_bin_get_child() on the
  * combo box.
index 92802e17d50a3d69b62d3bd954b6a3bdda7f2ba5..457e1f8f255e7f0c4928f2de06f2163cab0484ae 100644 (file)
@@ -185,7 +185,7 @@ gtk_css_custom_property_create_initial_value (GParamSpec *pspec)
  * be the theme engine name.
  *
  * For any type a @parse_func may be provided, being this function
- * used for turning any property value (between ':' and ';') in
+ * used for turning any property value (between “:” and “;”) in
  * CSS to the #GValue needed. For basic types there is already
  * builtin parsing support, so %NULL may be provided for these
  * cases.
index abf6e6a9ae6cb399faf2256efc12ca4c4b504b58..a26ae73893b3a3b699072892575b389e7a4f351b 100644 (file)
@@ -74,7 +74,7 @@
  * # Style sheets
  *
  * The basic structure of the style sheets understood by this provider is
- * a series of statements, which are either rule sets or '@-rules', separated
+ * a series of statements, which are either rule sets or “@-rules”, separated
  * by whitespace.
  *
  * A rule set consists of a selector and a declaration block, which is
@@ -96,7 +96,7 @@
  * Selectors work very similar to the way they do in CSS, with widget class
  * names taking the role of element names, and widget names taking the role
  * of IDs. When used in a selector, widget names must be prefixed with a
- * '&num;' character. The '*' character represents the so-called universal
+ * '&num;' character. The “*” character represents the so-called universal
  * selector, which matches any widget.
  *
  * To express more complicated situations, selectors can be combined in
  *   that occur inside a GtkToolBar.
  * - In the previous example, the GtkButton is matched even
  *   if it occurs deeply nested inside the toolbar. To restrict the match
- *   to direct children of the parent widget, insert a '>' character between
+ *   to direct children of the parent widget, insert a “>” character between
  *   the two selectors. E.g. `GtkNotebook > GtkLabel` matches
  *   GtkLabel widgets that are direct children of a GtkNotebook.
  *
  * ]|
  *
  * Widgets may also define style classes, which can be used for matching.
- * When used in a selector, style classes must be prefixed with a '.'
+ * When used in a selector, style classes must be prefixed with a “.”
  * character.
  *
  * Refer to the documentation of individual widgets to learn which
  *               color-stop (@position, @color),
  *               ...)</literallayout>
  * where @start_x and @end_x can be either a floating point number between
- * 0 and 1 or one of the special values 'left', 'right' or 'center', @start_y
+ * 0 and 1 or one of the special values “left”, “right” or “center”, @start_y
  * and @end_y can be either a floating point number between 0 and 1 or one
- * of the special values 'top', 'bottom' or 'center', @position is a floating
+ * of the special values “top”, “bottom” or “center”, @position is a floating
  * point number between 0 and 1 and @color is a color expression (see above).
  * The color-stop can be repeated multiple times to add more than one color
- * stop. 'from (@color)' and 'to (@color)' can be used as abbreviations for
+ * stop. “from (@color)” and “to (@color)” can be used as abbreviations for
  * color stops with position 0 and 1, respectively.
  *
  * An example for a linear gradient:
  * outlined by border-width.
  * The default (stretch) is to resize the slice to fill in the whole 
  * allocated area.
- * If the value of this property is 'repeat', the image slice
+ * If the value of this property is “repeat”, the image slice
  * will be tiled to fill the area.
- * If the value of this property is 'round', the image slice will
+ * If the value of this property is “round”, the image slice will
  * be tiled to fill the area, and scaled to fit it exactly
  * a whole number of times.
- * If the value of this property is 'space', the image slice will
+ * If the value of this property is “space”, the image slice will
  * be tiled to fill the area, and if it doesn’t fit it exactly a whole
  * number of times, the extra space is distributed as padding around 
  * the slices.
  *                center center, 0.8,
  *                color-stop (0.0, &num;fff),
  *                color-stop (1.0, &num;000));
- * url ('background.png');</literallayout>
+ * url ("background.png");</literallayout>
  *         </entry>
  *       </row>
  *       <row>
index 5756cd1619c25b673dc423b9fcbf34b9161946d0..e1df310903b691ef4e2896baf880ed82345497c0 100644 (file)
  * recommended; it allows you to set the dialog title, some convenient
  * flags, and add simple buttons.
  *
- * If 'dialog' is a newly created dialog, the two primary areas of the
+ * If “dialog” is a newly created dialog, the two primary areas of the
  * window can be accessed through gtk_dialog_get_content_area() and
  * gtk_dialog_get_action_area(), as can be seen from the example below.
  *
- * A 'modal' dialog (that is, one which freezes the rest of the application
+ * A “modal” dialog (that is, one which freezes the rest of the application
  * from user input), can be created by calling gtk_window_set_modal() on the
  * dialog. Use the GTK_WINDOW() macro to cast the widget returned from
  * gtk_dialog_new() into a #GtkWindow. When using gtk_dialog_new_with_buttons()
index 6c364a611e81eac916763b090c19c245210e5029..1e2e7a347e790c2783003e948892cebd657e0e51 100644 (file)
@@ -83,7 +83,7 @@
  *
  * When using an entry for passwords and other sensitive information,
  * it can be put into “password mode” using gtk_entry_set_visibility().
- * In this mode, entered text is displayed using a 'invisible' character.
+ * In this mode, entered text is displayed using a “invisible” character.
  * By default, GTK+ picks the best invisible character that is available
  * in the current font, but it can be changed with
  * gtk_entry_set_invisible_char(). Since 2.16, GTK+ displays a warning
index cc1ad3df86318cda61116af821eba2b428eb7fff..6cba7d345ecb45eb29ff3ec1fb11cbd2fb78e943 100644 (file)
@@ -1207,10 +1207,10 @@ G_END_DECLS
  * The difference between @GTK_INPUT_PURPOSE_DIGITS and
  * @GTK_INPUT_PURPOSE_NUMBER is that the former accepts only digits
  * while the latter also some punctuation (like commas or points, plus,
- * minus) and 'e' or 'E' as in 3.14E+000.
+ * minus) and “e” or “E” as in 3.14E+000.
  *
  * This enumeration may be extended in the future; input methods should
- * interpret unknown values as 'free form'.
+ * interpret unknown values as “free form”.
  *
  * Since: 3.6
  */
index a9bc69ab9a1b561649fee08764e799e4f9e8eaff..3240559e791a874ea3ab06eaf7073102d58f93bf 100644 (file)
@@ -1648,7 +1648,7 @@ gtk_expander_new (const gchar *label)
  *
  * Creates a new expander using @label as the text of the label.
  * If characters in @label are preceded by an underscore, they are underlined.
- * If you need a literal underscore character in a label, use '__' (two
+ * If you need a literal underscore character in a label, use “__” (two
  * underscores). The first underlined character represents a keyboard
  * accelerator called a mnemonic.
  * Pressing Alt and that key activates the button.
index d8f3ad195f3dee96c700fe7bfffa14d9fd316058..947c3d9c0d527fc96ec51b8f1ffcf5321ac67f66 100644 (file)
@@ -1152,7 +1152,7 @@ key_is_left_or_right (GdkEventKey *event)
 }
 
 /* Handles key press events on the file list, so that we can trap Enter to
- * activate the default button on our own.  Also, checks to see if '/' has been
+ * activate the default button on our own.  Also, checks to see if “/” has been
  * pressed.
  */
 static gboolean
index 14e7dd6de6447bddfe1dd80066c67ee94c9bfbf4..7cac6f870f42c3d5cfb0a846d1e2baea51fefdd1 100644 (file)
@@ -1823,7 +1823,7 @@ gtk_grid_new (void)
  * Adds a widget to the grid.
  *
  * The position of @child is determined by @left and @top. The
- * number of 'cells' that @child will occupy is determined by
+ * number of “cells” that @child will occupy is determined by
  * @width and @height.
  */
 void
index 05a1ef09d81d7f320accb69eb91507f14f2ea548..4b0ee84a9c9279e3bd0c3849cc0e589581d7d49e 100644 (file)
@@ -4317,7 +4317,7 @@ _gtk_icon_info_load_symbolic_internal (GtkIconInfo  *icon_info,
  *
  * As implementation details, the icon loaded needs to be of SVG type,
  * contain the “symbolic” term as the last component of the icon name,
- * and use the 'fg', 'success', 'warning' and 'error' CSS styles in the
+ * and use the “fg”, “success”, “warning” and “error” CSS styles in the
  * SVG file itself.
  *
  * See the [Symbolic Icons Specification](http://www.freedesktop.org/wiki/SymbolicIcons)
@@ -4853,7 +4853,7 @@ gtk_icon_info_load_symbolic_for_style (GtkIconInfo   *icon_info,
  * icons, they are in a 1000x1000 coordinate space that is scaled
  * to the final size of the icon.  You can determine if the icon is an SVG
  * icon by using gtk_icon_info_get_filename(), and seeing if it is non-%NULL
- * and ends in '.svg'.
+ * and ends in “.svg”.
  *
  * This function is provided primarily to allow compatibility wrappers
  * for older API's, and is not expected to be useful for applications.
index a8af4008276540a51777ecbe3e9e8bde3d30006d..329546e13cd60159a3faa3bf84de1c86d7a31e78 100644 (file)
@@ -639,10 +639,10 @@ _gtk_im_module_create (const gchar *context_id)
 
 /* Match @locale against @against.
  * 
- * 'en_US' against 'en_US'       => 4
- * 'en_US' against 'en'          => 3
- * 'en', 'en_UK' against 'en_US' => 2
- *  all locales, against '*'    => 1
+ * 'en_US' against “en_US”       => 4
+ * 'en_US' against “en”          => 3
+ * 'en', “en_UK” against “en_US” => 2
+ *  all locales, against “*”        => 1
  */
 static gint
 match_locale (const gchar *locale,
index 3beffdc9c7abee6afd5b310f1da31d405531490d..fe3bb3f237647195c3999e33c008bc83a4506dde 100644 (file)
@@ -955,7 +955,7 @@ gtk_info_bar_set_default_response (GtkInfoBar *info_bar,
  * @info_bar: a #GtkInfoBar
  * @response_id: a response ID
  *
- * Emits the 'response' signal with the given @response_id.
+ * Emits the “response” signal with the given @response_id.
  *
  * Since: 2.18
  */
index 4e896bd1e7bc8365708dfd3a75bf1c7fb89d17d3..4b2a72d443b60734a1e6039ec76cc538054a9223 100644 (file)
@@ -254,7 +254,7 @@ struct _GtkLabelPrivate
  * There are some new fields for links. The links field contains the list
  * of GtkLabelLink structs that describe the links which are embedded in
  * the label. The active_link field points to the link under the mouse
- * pointer. For keyboard navigation, the 'focus' link is determined by
+ * pointer. For keyboard navigation, the “focus” link is determined by
  * finding the link which contains the selection_anchor position.
  * The link_clicked field is used with button press and release events
  * to ensure that pressing inside a link and releasing outside of it
index 4abcb255ab329167543010975333914b3f22e0da..44d7ce2a70357daa723b7b451ac51c7df779de6f 100644 (file)
@@ -679,7 +679,7 @@ gtk_link_button_query_tooltip_cb (GtkWidget    *widget,
  * @uri: a valid URI
  *
  * Sets @uri as the URI where the #GtkLinkButton points. As a side-effect
- * this unsets the 'visited' state of the button.
+ * this unsets the “visited” state of the button.
  *
  * Since: 2.10
  */
@@ -724,9 +724,9 @@ gtk_link_button_get_uri (GtkLinkButton *link_button)
 /**
  * gtk_link_button_set_visited:
  * @link_button: a #GtkLinkButton
- * @visited: the new 'visited' state
+ * @visited: the new “visited” state
  *
- * Sets the 'visited' state of the URI where the #GtkLinkButton
+ * Sets the “visited” state of the URI where the #GtkLinkButton
  * points.  See gtk_link_button_get_visited() for more details.
  *
  * Since: 2.14
@@ -762,9 +762,9 @@ gtk_link_button_set_visited (GtkLinkButton *link_button,
  * gtk_link_button_get_visited:
  * @link_button: a #GtkLinkButton
  *
- * Retrieves the 'visited' state of the URI where the #GtkLinkButton
+ * Retrieves the “visited” state of the URI where the #GtkLinkButton
  * points. The button becomes visited when it is clicked. If the URI
- * is changed on the button, the 'visited' state is unset again.
+ * is changed on the button, the “visited” state is unset again.
  *
  * The state may also be changed using gtk_link_button_set_visited().
  *
index 82cde83638aa22f4f1ffcdfabed352d0ad879a6e..72e736b6138cf1524bec13733cdd93b39b894928 100644 (file)
@@ -5075,7 +5075,7 @@ gtk_menu_set_screen (GtkMenu   *menu,
  * @top_attach: The row number to attach the top of the item to
  * @bottom_attach: The row number to attach the bottom of the item to
  *
- * Adds a new #GtkMenuItem to a (table) menu. The number of 'cells' that
+ * Adds a new #GtkMenuItem to a (table) menu. The number of “cells” that
  * an item will occupy is specified by @left_attach, @right_attach,
  * @top_attach and @bottom_attach. These each represent the leftmost,
  * rightmost, uppermost and lower column and row numbers of the table.
index 21a429988fd6cf2e213c557e09be0014183946c9..dbce31b631256da2f86b09aec0785e283754b33a 100644 (file)
@@ -38,7 +38,7 @@
  * text direction) of the menu aligned with the starting edge of the button.
  * If there is not enough space below the button, the menu is popped up above
  * the button instead. If the alignment would move part of the menu offscreen,
- * it is 'pushed in'.
+ * it is “pushed in”.
  *
  * ## Direction = Down
  *
index 7b2e155974170061b57eb46475b1687e486973e1..48a00ea42f3c04ef7c338bb07b1ed6ee475e0bc9 100644 (file)
@@ -1549,7 +1549,7 @@ gtk_menu_shell_select_submenu_first (GtkMenuShell *menu_shell)
  * menubars working, if submenu_placement is different for
  * the menu and its MenuShell then the following apply:
  *
- * - For 'parent' the current menu is not just moved to
+ * - For “parent” the current menu is not just moved to
  *   the parent, but moved to the previous entry in the parent
  * - For 'child', if there is no child, then current is
  *   moved to the next item in the parent.
index 2e650fba328961e7d0634868d7d88929bc4b17b4..86ee9fca5d53046c71e8acafdddace357ff81e99 100644 (file)
@@ -146,7 +146,7 @@ gtk_menu_tracker_section_find_model (GtkMenuTrackerSection *section,
  *    before us (ie: we should add a separator if we have content in
  *    order to divide us from the items above)
  *
- *  - if we had a 'label' attribute set for this section
+ *  - if we had a “label” attribute set for this section
  *
  * parent_model and parent_index are passed in so that we can give them
  * to the insertion callback so that it can see the label (and anything
index a63ea90b2e17e4b25ccc64504e6707965404195d..bf3c20e972af6f3fccfc213999cb88b2226a7b3c 100644 (file)
@@ -6953,7 +6953,7 @@ gtk_notebook_menu_detacher (GtkWidget *widget,
  * @notebook: a #GtkNotebook
  * @child: the #GtkWidget to use as the contents of the page
  * @tab_label: (allow-none): the #GtkWidget to be used as the label
- *     for the page, or %NULL to use the default label, 'page N'
+ *     for the page, or %NULL to use the default label, “page N”
  *
  * Appends a page to @notebook.
  *
@@ -6977,7 +6977,7 @@ gtk_notebook_append_page (GtkNotebook *notebook,
  * @notebook: a #GtkNotebook
  * @child: the #GtkWidget to use as the contents of the page
  * @tab_label: (allow-none): the #GtkWidget to be used as the label
- *     for the page, or %NULL to use the default label, 'page N'
+ *     for the page, or %NULL to use the default label, “page N”
  * @menu_label: (allow-none): the widget to use as a label for the
  *     page-switch menu, if that is enabled. If %NULL, and @tab_label
  *     is a #GtkLabel or %NULL, then the menu label will be a newly
@@ -7010,7 +7010,7 @@ gtk_notebook_append_page_menu (GtkNotebook *notebook,
  * @notebook: a #GtkNotebook
  * @child: the #GtkWidget to use as the contents of the page
  * @tab_label: (allow-none): the #GtkWidget to be used as the label
- *     for the page, or %NULL to use the default label, 'page N'
+ *     for the page, or %NULL to use the default label, “page N”
  *
  * Prepends a page to @notebook.
  *
@@ -7034,7 +7034,7 @@ gtk_notebook_prepend_page (GtkNotebook *notebook,
  * @notebook: a #GtkNotebook
  * @child: the #GtkWidget to use as the contents of the page
  * @tab_label: (allow-none): the #GtkWidget to be used as the label
- *     for the page, or %NULL to use the default label, 'page N'
+ *     for the page, or %NULL to use the default label, “page N”
  * @menu_label: (allow-none): the widget to use as a label for the
  *     page-switch menu, if that is enabled. If %NULL, and @tab_label
  *     is a #GtkLabel or %NULL, then the menu label will be a newly
@@ -7067,7 +7067,7 @@ gtk_notebook_prepend_page_menu (GtkNotebook *notebook,
  * @notebook: a #GtkNotebook
  * @child: the #GtkWidget to use as the contents of the page
  * @tab_label: (allow-none): the #GtkWidget to be used as the label
- *     for the page, or %NULL to use the default label, 'page N'
+ *     for the page, or %NULL to use the default label, “page N”
  * @position: the index (starting at 0) at which to insert the page,
  *     or -1 to append the page after all other pages
  *
@@ -7125,7 +7125,7 @@ gtk_notebook_mnemonic_activate_switch_page (GtkWidget *child,
  * @notebook: a #GtkNotebook
  * @child: the #GtkWidget to use as the contents of the page
  * @tab_label: (allow-none): the #GtkWidget to be used as the label
- *     for the page, or %NULL to use the default label, 'page N'
+ *     for the page, or %NULL to use the default label, “page N”
  * @menu_label: (allow-none): the widget to use as a label for the
  *     page-switch menu, if that is enabled. If %NULL, and @tab_label
  *     is a #GtkLabel or %NULL, then the menu label will be a newly
@@ -7812,7 +7812,7 @@ gtk_notebook_get_tab_label (GtkNotebook *notebook,
  *
  * Changes the tab label for @child.
  * If %NULL is specified for @tab_label, then the page will
- * have the label 'page N'.
+ * have the label “page N”.
  */
 void
 gtk_notebook_set_tab_label (GtkNotebook *notebook,
index cb9994df96ec23a6d4bb3e47b2ed256a6baa9f01..5c313c4fae0047f4934c9b1842bfca7550a719a4 100644 (file)
@@ -37,7 +37,7 @@
  * realized as subclasses of a common base class (e.g #GtkBox/#GtkHBox/#GtkVBox
  * or #GtkScale/#GtkHScale/#GtkVScale). #GtkOrientable is more flexible in that
  * it allows the orientation to be changed at runtime, allowing the widgets
- * to 'flip'.
+ * to “flip”.
  *
  * #GtkOrientable was introduced in GTK+ 2.16.
  */
index 40c94f3c13c05ac8a29a1129104f64d22ec37476..416bf6e25001b8fad0436b054689e43f25501f48 100644 (file)
@@ -358,7 +358,7 @@ _gtk_pango_get_default_attributes (AtkAttributeSet *attributes,
  * @end_offset: return location for the ending offset of the
  *    current run
  *
- * Finds the 'run' around index (i.e. the maximal range of characters
+ * Finds the “run” around index (i.e. the maximal range of characters
  * where the set of applicable attributes remains constant) and
  * returns the starting and ending offsets for it.
  *
index cb63c9ee57bdb5f27c1aa36b27fad9e3a82e3881..0ad153aea8b438d1af62e968842b4ba88dd8f7f8 100644 (file)
@@ -2061,7 +2061,7 @@ _gtk_style_context_check_region_name (const gchar *str)
  * would apply to even and odd rows, respectively.
  *
  * Region names must only contain lowercase letters
- * and '-', starting always with a lowercase letter.
+ * and “-”, starting always with a lowercase letter.
  *
  * Since: 3.0
  **/
@@ -2552,7 +2552,7 @@ gtk_style_context_lookup_icon_set (GtkStyleContext *context,
  *
  * Attaches @context to the given screen.
  *
- * The screen is used to add style information from 'global' style
+ * The screen is used to add style information from “global” style
  * providers, such as the screens #GtkSettings instance.
  *
  * If you are using a #GtkStyleContext returned from
index 78f043bc4dc4568ce23e2a99165ee592e85d7af1..c188604fa598c728e5be375f003b554fd52d358f 100644 (file)
@@ -307,7 +307,7 @@ struct _GtkStyleContextClass
  *
  * A CSS class to match primary toolbars.
  *
- * This should be used for the 'main' toolbar of an application,
+ * This should be used for the “main” toolbar of an application,
  * right below its menubar.
  */
 #define GTK_STYLE_CLASS_PRIMARY_TOOLBAR "primary-toolbar"
@@ -473,7 +473,7 @@ struct _GtkStyleContextClass
 /**
  * GTK_STYLE_CLASS_SPINNER:
  *
- * A CSS class to use when rendering activity as a 'spinner'.
+ * A CSS class to use when rendering activity as a “spinner”.
  *
  * This is used by #GtkSpinner and #GtkCellRendererSpinner.
  */
index 05bd21dc1bbf402755dfc4e8587396b973ee490f..fa0067802deec932c23bba98f579922ae6c81718 100644 (file)
@@ -270,7 +270,7 @@ gtk_test_spin_button_click (GtkSpinButton  *spinner,
  *
  * This function will search @widget and all its descendants for a GtkLabel
  * widget with a text string matching @label_pattern.
- * The @label_pattern may contain asterisks '*' and question marks '?' as
+ * The @label_pattern may contain asterisks “*” and question marks “?” as
  * placeholders, g_pattern_match() is used for the matching.
  * Note that locales other than "C“ tend to alter (translate” label strings,
  * so this function is genrally only useful in test programs with
index 52968658e97b0b3c13d5d558b9f03cd1229e8c36..785cf22f76803a40e29e6f19c3a0613133f220a3 100644 (file)
@@ -43,7 +43,7 @@
  * @Title: GtkToggleButton
  * @See_also: #GtkButton, #GtkCheckButton, #GtkCheckMenuItem
  *
- * A #GtkToggleButton is a #GtkButton which will remain 'pressed-in' when
+ * A #GtkToggleButton is a #GtkButton which will remain “pressed-in” when
  * clicked. Clicking again will cause the toggle button to return to its
  * normal state.
  *
@@ -451,7 +451,7 @@ gtk_toggle_button_get_mode (GtkToggleButton *toggle_button)
  * @is_active: %TRUE or %FALSE.
  *
  * Sets the status of the toggle button. Set to %TRUE if you want the
- * GtkToggleButton to be 'pressed in', and %FALSE to raise it.
+ * GtkToggleButton to be “pressed in”, and %FALSE to raise it.
  * This action causes the #GtkToggleButton::toggled signal and the
  * #GtkButton::clicked signal to be emitted.
  */
index eb82ef9b5009bb11a5584ef447522d5b3fb1f70d..bca04889e78685077bd079b446908bd1d7c7d56a 100644 (file)
@@ -438,7 +438,7 @@ gtk_toggle_tool_button_new_from_stock (const gchar *stock_id)
  * @is_active: whether @button should be active
  * 
  * Sets the status of the toggle tool button. Set to %TRUE if you
- * want the GtkToggleButton to be 'pressed in', and %FALSE to raise it.
+ * want the GtkToggleButton to be “pressed in”, and %FALSE to raise it.
  * This action causes the toggled signal to be emitted.
  * 
  * Since: 2.4
index 148cd81a46f25944942f48ec0599a7bcea27ccba..ed7fb46e3a4c714a16254e72884390e0f60bbadd 100644 (file)
@@ -1199,7 +1199,7 @@ gtk_tool_button_get_label (GtkToolButton *button)
  * should be used for the mnemonic accelerator key in the overflow menu. For
  * example, if the label property is “_Open” and @use_underline is %TRUE,
  * the label on the tool button will be “Open” and the item on the overflow
- * menu will have an underlined 'O'.
+ * menu will have an underlined “O”.
  * 
  * Labels shown on tool buttons never have mnemonics on them; this property
  * only affects the menu item on the overflow menu.
index 6ebbccfc3d2db174b1cd571d939b460924b4a873..f228982de88c0f451fe5d5fee8d38beaab6a03fa 100644 (file)
  *    gint   int_data;
  *
  *    /&ast; Make sure you terminate calls to gtk_tree_model_get()
- *     &ast; with a '-1' value
+ *     &ast; with a “-1” value
  *     &ast;/
  *    gtk_tree_model_get (list_store, &iter,
  *                        STRING_COLUMN, &str_data,
@@ -712,7 +712,7 @@ gtk_tree_path_new_from_indicesv (gint *indices,
  *
  * Generates a string representation of the path.
  *
- * This string is a ':' separated list of numbers.
+ * This string is a “:” separated list of numbers.
  * For example, “4:10:0:3” would be an acceptable
  * return value for this string.
  *
@@ -1301,7 +1301,7 @@ gtk_tree_model_get_iter_from_string (GtkTreeModel *tree_model,
  *
  * Generates a string representation of the iter.
  *
- * This string is a ':' separated list of numbers.
+ * This string is a “:” separated list of numbers.
  * For example, “4:10:0:3” would be an acceptable
  * return value for this string.
  *
index 85f5c6a1fad92c990c20cbe960808d06d2ec80b1..2324df8c8c0e54143aa5a23bdab6a5ee15a3f0fc 100644 (file)
@@ -2691,10 +2691,10 @@ gtk_tree_model_sort_clear_cache_helper (GtkTreeModelSort *tree_model_sort,
  * gtk_tree_model_sort_reset_default_sort_func:
  * @tree_model_sort: A #GtkTreeModelSort
  * 
- * This resets the default sort function to be in the 'unsorted' state.  That
+ * This resets the default sort function to be in the “unsorted” state.  That
  * is, it is in the same order as the child model. It will re-sort the model
  * to be in the same order as the child model only if the #GtkTreeModelSort
- * is in 'unsorted' state.
+ * is in “unsorted” state.
  **/
 void
 gtk_tree_model_sort_reset_default_sort_func (GtkTreeModelSort *tree_model_sort)
index f9cd68afbaf0eea70de5e1c6dbefc9577ef5a2ea..3a5bb987a54a8ad465bc8f72145d638ab696f122 100644 (file)
@@ -1468,7 +1468,7 @@ _gtk_tree_selection_row_is_selectable (GtkTreeSelection *selection,
  */
 
 /*
- * docs about the 'override_browse_mode', we set this flag when we want to
+ * docs about the “override_browse_mode”, we set this flag when we want to
  * unset select the node and override the select browse mode behaviour (that is
  * 'one node should *always* be selected').
  */
index 6a2acb364f7e07a2b484936bb1196c922af78a88..70b49ceaee13ee0cd64ed46f518ff1d7622af6aa 100644 (file)
@@ -7792,7 +7792,7 @@ gtk_widget_has_focus (GtkWidget *widget)
  * To find out if the widget has the global input focus, use
  * gtk_widget_has_focus().
  *
- * Return value: %TRUE if the widget should display a 'focus rectangle'
+ * Return value: %TRUE if the widget should display a “focus rectangle”
  *
  * Since: 3.2
  */
@@ -15714,7 +15714,7 @@ _gtk_widget_get_action_muxer (GtkWidget *widget)
  *
  * Inserts @group into @widget. Children of @widget that implement
  * #GtkActionable can then be associated with actions in @group by
- * setting their 'action-name' to
+ * setting their “action-name” to
  * @prefix.`action-name`.
  *
  * If @group is %NULL, a previously inserted group for @name is removed
index 76490544547d45b2507a9593dabf38310e57c9b6..2291b448080a818dbe74b425e9f48a12825937cb 100644 (file)
@@ -52,7 +52,7 @@ typedef enum
 } GtkWidgetHelpType;
 
 /* Macro for casting a pointer to a GtkWidget or GtkWidgetClass pointer.
- * Macros for testing whether `widget' or `klass' are of type GTK_TYPE_WIDGET.
+ * Macros for testing whether widget or klass are of type GTK_TYPE_WIDGET.
  */
 #define GTK_TYPE_WIDGET                          (gtk_widget_get_type ())
 #define GTK_WIDGET(widget)               (G_TYPE_CHECK_INSTANCE_CAST ((widget), GTK_TYPE_WIDGET, GtkWidget))
index fa431da1972217e0b29752f0f335a817cecb0d95..b5c74b7b0decbf1680e3792797afa5e5c1185e19 100644 (file)
@@ -978,7 +978,7 @@ gtk_widget_path_iter_has_class (const GtkWidgetPath *path,
  * gtk_style_context_add_region().
  *
  * Region names must only contain lowercase letters
- * and '-', starting always with a lowercase letter.
+ * and “-”, starting always with a lowercase letter.
  *
  * Since: 3.0
  **/
index cb4bde661d2a84118aa1b6b8dd5769e9524bf982..36ee0d16aa8e7e4d4274ed95cc14d36d73da288a 100644 (file)
@@ -11370,7 +11370,7 @@ gtk_XParseGeometry (const char   *string,
  * @geometry: geometry string
  * 
  * Parses a standard X Window System geometry string - see the
- * manual page for X (type 'man X') for details on this.
+ * manual page for X (type “man X”) for details on this.
  * gtk_window_parse_geometry() does work on all GTK+ ports
  * including Win32 but is primarily intended for an X environment.
  *
@@ -11425,7 +11425,7 @@ gtk_XParseGeometry (const char   *string,
  *   if (argc > 1)
  *     {
  *       if (!gtk_window_parse_geometry (GTK_WINDOW (window), argv[1]))
- *         fprintf (stderr, "Failed to parse '%s'\n", argv[1]);
+ *         fprintf (stderr, "Failed to parse “%s”\n", argv[1]);
  *     }
  *    
  *   gtk_widget_show_all (window);
@@ -12040,7 +12040,7 @@ _gtk_window_schedule_mnemonics_visible (GtkWindow *window)
  *
  * Gets the value of the #GtkWindow:focus-visible property.
  *
- * Returns: %TRUE if 'focus rectangles' are supposed to be visible
+ * Returns: %TRUE if “focus rectangles” are supposed to be visible
  *     in this window.
  *
  * Since: 3.2
index c5be0f56d515ab15c6cd5ef23f715b173bef952b..b186e9ad70ef2b03d376f79f9dcb634a1c34fbc5 100644 (file)
@@ -575,7 +575,7 @@ maybe_cache_icon_data (Image       *image,
 }
 
 /*
- * Finds all dir separators and replaces them with '/'.
+ * Finds all dir separators and replaces them with “/”.
  * This makes sure that only /-separated paths are written in cache files,
  * maintaining compatibility with theme index files that use slashes as
  * directory separators on all platforms.